home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 February / Macworld (1998-02).dmg / Shareware World / Comms & Internet / ShadowBot 1.23 / Plugins / JOIN / #mac
Text File  |  1997-05-18  |  896b  |  41 lines

  1. 'Sample JOIN Plugin
  2. '© John Bafford, 1996-1997
  3.  
  4. @IF AUTOOP = TRUE isOp
  5. 'ELSE
  6. @IF FOUNDUSER = FALSE greetUnknown
  7. 'ELSE (do nothing, because if they're in the bot's userlist, they prolly know the purpose of the channel...)
  8. @END
  9.  
  10. @LABEL greetUnknown
  11. MSGQ $NICK Welcome to #Mac, $NICK! If you have a question, feel free to ask it in the channel. Check our web page at http://spidernet.nl/~ROCLASI/irc/mac.html
  12. @END
  13.  
  14. @LABEL isOp
  15. @IF ACCESS = 1000 isOwner
  16. @IF ACCESS > 900 botMaster
  17. @IF ACCESS > 0 regOp
  18. @END
  19.  
  20. @LABEL regOp
  21. @IF "$NICK" = "X" CService
  22. @IF "$NICK" = "W" CService
  23. @IF "$NICK" = "MacBot" MacBot
  24. SAYQ Look! It's one of our trusted ops, $NICK!
  25. @END
  26.  
  27. @LABEL CService
  28. SAYQ Well, it's about time you got back here, $NICK!
  29. @END
  30.  
  31. @LABEL MacBot
  32. SAYQ Glad you could rejoin us, MacBot!
  33. @END
  34.  
  35. @LABEL botMaster
  36. SAYQ Look! It's botmaster $NICK!
  37. @END
  38.  
  39. @LABEL isOwner
  40. SAYQ Look! It's $NICK, my owner!
  41. @END